home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha Extra 2004 January / CyberMycha Extra 1-2004 (Poland) (Disc 2).bin / Pippi / gmdl.dir / Internal_43_scoreInternal.ls < prev    next >
Encoding:
Text File  |  2001-09-04  |  554 b   |  29 lines

  1. property pippi, water
  2. global gmObject
  3.  
  4. on beginSprite me
  5.   sendMMV = 1
  6.   pippi = gmObject.pippi
  7.   water = gmObject.water
  8. end
  9.  
  10. on exitFrame me
  11.   if (pippi.zeroMMV = 0) and (water.frame = 1) and (the keyDownScript = EMPTY) then
  12.     zP = pippi.locH
  13.     gmObject.mouseHX()
  14.   end if
  15.   go(the frame)
  16. end
  17.  
  18. on mouseDown me
  19.   if (the mouseV > 75) and (the mouseV < 515) and (water.frame = 1) then
  20.     pippi.mouseDownOutOf()
  21.   end if
  22. end
  23.  
  24. on mouseUp me
  25.   if (the mouseV > 75) and (the mouseV < 515) and (water.frame = 1) then
  26.     pippi.mouseUpOutOf()
  27.   end if
  28. end
  29.